home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / cgraphix / inkey.c < prev    next >
Text File  |  1986-04-30  |  243b  |  16 lines

  1. /* «RM120»«PL99999»«TS4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76» */
  2. #include    <stdio.h>
  3.  
  4. int inkey()
  5. {
  6.     extern int bdos();
  7.     int        ch;
  8.  
  9.     if (0 == (ch = 0xff & bdos(8))) {
  10.         ch = -(0xff & bdos(8));
  11.     }
  12.     return(ch);
  13. }
  14.  
  15.  
  16.